FUNCTION LIST:
makeMap()		Creates the map system.
load()		Loads, converts, resets, and draws a map, based on an XML file.
drawObj()		Resets & draws a map, based on the data provided.
drawLargeObj()			Resets & draws a map, based on the data provided.  (old brute-force format)
drawCompactObj()		Resets & draws a map, based on the data provided.  (compact format)
setTile()		Draws a tile.
reset()		Clears all internal data, and deletes all layers.
loadChipset()	Loads a chipset.





USAGE:
my_map = makeMap( "map_mc", this, 42 );
my_map.load( "myMap.xml" );



USAGE:
my_map = makeMap( "map_mc", this, 42 );
my_map.drawObj( map_obj );



USAGE:
my_map = makeMap( "map_mc", this, 42, tileWidth, tileHeight );
my_map.setTile( x, y, tileNum, layer );